*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }

.ak {
  --paper: #ffffff;
  --paper-2: #f0f7ff;
  --paper-3: #e8f4ff;
  --line: #dbe8f5;
  --line-soft: #eaf0f8;
  --blue: #007BFF;
  --blue-deep: #0056c7;
  --blue-bright: #3399FF;
  --blue-soft: #eef4ff;
  --gold: #FFC000;
  --gold-soft: #fff3cc;
  --gold-deep: #e6ac00;
  --ink: #333333;
  --ink-dim: #666666;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
.ak h1, .ak h2, .ak h3, .ak h4 { font-family: Arial, Helvetica, sans-serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.08; margin: 0; }
.ak p { margin: 0; }
.ak em { font-style: normal; color: var(--gold); }
.ak a { text-decoration: none; color: inherit; }
.ak img { max-width: 100%; display: block; }

.ak-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.ak-eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.ak-eyebrow .bar { width: 56px; height: 2px; background: var(--gold); flex-shrink: 0; }
.ak-eyebrow .txt { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }

.ak-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #fff; padding: 12px 24px; border-radius: 999px; font-size: 14px; font-weight: 500; transition: background .2s; border: none; cursor: pointer; }
.ak-btn:hover { background: var(--gold-deep); }
.ak-btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; color: #fff; font-size: 14px; transition: border-color .2s, background .2s; }
.ak-btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }


/* Hero */
.ak-hero { position: relative; overflow: hidden; color: #fff; padding: 96px 0 80px; background: linear-gradient(135deg, #007BFF 0%, #0056c7 60%, #003f9e 100%); }
.ak-hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .ak-hero-grid { grid-template-columns: 1.15fr 1fr; gap: 64px; } }
.ak-hero .ak-eyebrow .txt { color: #eaf5ff; }
.ak-hero h1 { font-size: clamp(2.4rem, 5vw, 4.25rem); margin-top: 24px; }
.ak-hero .lede { margin-top: 28px; max-width: 576px; color: rgba(255,255,255,.85); font-size: 18px; line-height: 1.6; }
.ak-hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.ak-hero-actions a.text-link { font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 4px; color: #fff; transition: color .2s, border-color .2s; }
.ak-hero-actions a.text-link:hover { color: var(--gold); border-color: var(--gold); }
.ak-hero-img-wrap { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.1); }
.ak-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (min-width: 1024px) { .ak-hero-img-wrap img { aspect-ratio: auto; height: 480px; } }
.ak-hero-badge { position: absolute; top: 16px; left: 16px; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: .2em; padding: 6px 12px; border-radius: 4px; }

.ak-stats { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 560px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.25); }
.ak-stat .v { font-size: 30px; font-weight: 700; color: var(--gold); }
.ak-stat .l { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 4px; text-transform: uppercase; letter-spacing: .15em; }

/* Divider / section intro band */
.ak-divider { padding: 96px 0; text-align: center; color: #fff; background: linear-gradient(135deg, #0a1f3d 0%, #0056c7 100%); }
.ak-divider .ak-eyebrow { justify-content: center; margin-bottom: 20px; }
.ak-divider .ak-eyebrow .bar { background: var(--gold); }
.ak-divider h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.ak-divider .bar-mid { width: 64px; height: 2px; background: var(--gold); margin: 24px auto; }
.ak-divider p { max-width: 640px; margin: 0 auto; color: rgba(255,255,255,.8); font-size: 18px; line-height: 1.6; }

/* Section */
.ak-section { padding: 96px 0; }
.ak-section.alt { background: var(--paper-2); }
.ak-section-head { text-align: center; max-width: 768px; margin: 0 auto; }
.ak-section-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 16px 0 20px; color: var(--blue-deep); }
.ak-section-head p { color: var(--ink-dim); font-size: 18px; line-height: 1.6; }

/* Cards */
.ak-cards { display: grid; gap: 24px; margin-top: 64px; }
@media (min-width: 768px) { .ak-cards { grid-template-columns: repeat(2, 1fr); } }
.ak-card { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--blue); border-radius: 12px; padding: 32px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.ak-card:hover { box-shadow: 0 20px 60px -30px rgba(0,123,255,.5); transform: translateY(-4px); }
.ak-card-meta { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
.ak-card-num { font-size: 12px; font-family: monospace; letter-spacing: .2em; color: var(--ink-dim); }
.ak-card-bar { width: 40px; height: 2px; background: var(--gold); transition: width .3s; }
.ak-card:hover .ak-card-bar { width: 64px; }
.ak-card h3 { font-size: 24px; margin-bottom: 16px; color: var(--blue-deep); }
.ak-card p { color: var(--ink-dim); line-height: 1.6; }

/* Two col */
.ak-two { display: grid; gap: 48px; align-items: center; }
@media (min-width: 768px) { .ak-two { grid-template-columns: 1fr 1fr; gap: 64px; } }
.ak-two.reverse .ak-two-media { order: -1; }
@media (min-width: 768px) { .ak-two.reverse .ak-two-media { order: 2; } }
.ak-two .kicker { color: var(--gold-deep); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 12px; display: block; }
.ak-two h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: 0 0 12px; color: var(--blue-deep); border-left: 4px solid var(--gold); padding-left: 20px; }
.ak-two h4 { font-size: 20px; margin: 24px 0 12px; color: var(--ink); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.ak-two p { color: var(--ink-dim); line-height: 1.7; margin-bottom: 20px; }
.ak-two ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 14px; }
.ak-two li { display: flex; gap: 12px; color: var(--ink-dim); line-height: 1.6; }
.ak-two li::before { content: "✓"; color: var(--blue); flex-shrink: 0; font-weight: 700; }
.ak-two li strong { color: var(--ink); }
.ak-img-frame { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(0,123,255,.08); }
.ak-img-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.ak-img-frame.round { border-radius: 50%; width: 260px; height: 260px; margin: 0 auto; border: 4px solid var(--blue-deep); box-shadow: 0 8px 24px rgba(0,86,199,.2); }
.ak-img-frame.round img { aspect-ratio: 1/1; }

.ak-equation { margin-top: 20px; background: var(--blue-soft); border-left: 3px solid var(--blue); border-radius: 6px; padding: 16px 20px; font-family: "Cambria Math", Georgia, serif; font-size: 17px; color: var(--blue-deep); }

/* Chart */
.ak-chart { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 32px; margin-top: 48px; }
.ak-chart-title { font-size: 12px; text-transform: uppercase; letter-spacing: .15em; color: var(--ink-dim); margin-bottom: 24px; }
.ak-bar-row { margin-bottom: 20px; }
.ak-bar-row:last-child { margin-bottom: 0; }
.ak-bar-label { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
.ak-bar-label .pct { font-family: monospace; font-weight: 700; color: var(--blue-deep); }
.ak-bar-track { height: 12px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
.ak-bar-fill { height: 100%; width: 0%; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); transition: width 1.1s ease; }
.ak-bar-fill.gold { background: linear-gradient(90deg, var(--gold), var(--gold-deep)); }
.ak-bar-fill.orange { background: linear-gradient(90deg, #ff8a3d, #e6600a); }
.ak-bar-fill.green { background: linear-gradient(90deg, #17b978, #0e8f5c); }
.ak-bar-fill.gray { background: linear-gradient(90deg, #9fb3c8, #74879c); }
.ak-chart-note { margin-top: 20px; font-size: 14px; color: var(--ink-dim); font-style: italic; line-height: 1.6; }

/* Table */
.ak-table { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin-top: 48px; }
.ak-table-head { display: grid; grid-template-columns: 1.1fr 1.5fr 1.5fr; background: var(--blue-deep); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: #fff; }
.ak-table-head > div { padding: 18px 24px; font-weight: 700; }
.ak-table-row { display: grid; grid-template-columns: 1.1fr 1.5fr 1.5fr; border-top: 1px solid var(--line); }
.ak-table-row:nth-child(even) { background: var(--paper-2); }
.ak-table-row > div { padding: 20px 24px; }
.ak-table-row .cat { font-weight: 700; color: var(--blue-deep); display: flex; align-items: center; gap: 10px; }
.ak-table-row .cat::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.ak-table-row .desc { color: var(--ink-dim); font-size: 14px; line-height: 1.6; }
@media (max-width: 767px) {
  .ak-table-head { display: none; }
  .ak-table-row { display: block; padding: 16px 24px; grid-template-columns: 1fr; }
  .ak-table-row > div { padding: 8px 0; }
}

/* Advantage / potability cards small */
.ak-adv { display: grid; gap: 32px; margin-top: 64px; }
@media (min-width: 768px) { .ak-adv { grid-template-columns: repeat(2, 1fr); } }
.ak-adv-card { border: 1px solid var(--line); border-radius: 12px; padding: 40px; background: #fff; transition: border-color .2s; }
.ak-adv-card:hover { border-color: var(--gold); }
.ak-adv-icon { width: 48px; height: 48px; border-radius: 8px; background: var(--gold-soft); color: var(--gold-deep); display: grid; place-items: center; margin-bottom: 24px; font-size: 20px; }
.ak-adv-card h3 { font-size: 22px; margin-bottom: 12px; color: var(--blue-deep); }
.ak-adv-card p { color: var(--ink-dim); line-height: 1.7; }

/* Scroll reveal */
.ak-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.ak-reveal.in { opacity: 1; transform: translateY(0); }